home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / CHATZILLA.XPI / bin / chrome / chatzilla.jar / content / chatzilla / config-add.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-06-08  |  3.6 KB  |  88 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is ChatZilla.
  16.    -
  17.    - The Initial Developer of the Original Code is James Ross.
  18.    - Portions created by the Initial Developer are Copyright (C) 2004
  19.    - the Initial Developer. All Rights Reserved.
  20.    -
  21.    - Contributor(s):
  22.    -   James Ross <silver@warwickcompsoc.co.uk>
  23.    -
  24.    - Alternatively, the contents of this file may be used under the terms of
  25.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  26.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.    - in which case the provisions of the GPL or the LGPL are applicable instead
  28.    - of those above. If you wish to allow use of your version of this file only
  29.    - under the terms of either the GPL or the LGPL, and not to allow others to
  30.    - use your version of this file under the terms of the MPL, indicate your
  31.    - decision by deleting the provisions above and replace them with the notice
  32.    - and other provisions required by the LGPL or the GPL. If you do not delete
  33.    - the provisions above, a recipient may use your version of this file under
  34.    - the terms of any one of the MPL, the GPL or the LGPL.
  35.    -
  36.    - ***** END LICENSE BLOCK ***** -->
  37.  
  38. <!DOCTYPE dialog SYSTEM "chrome://chatzilla/locale/config.dtd">
  39.  
  40. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  41. <?xml-stylesheet href="config.css" type="text/css"?>
  42.  
  43. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  44.     xmlns:html="http://www.w3.org/1999/xhtml"
  45.     windowtype="irc:chatzilla:config:add"
  46.     buttons="accept,cancel"
  47.     ondialogaccept="onOK();"
  48.     ondialogcancel="onCancel();"
  49.     onload="onLoad();"
  50.     title="&config.add.title;">
  51.   
  52.   <script src="config-add.js"/>
  53.   
  54.   <vbox>
  55.     <hbox align="center">
  56.       <label value="&config.type.label;" accesskey="&config.type.accesskey;" 
  57.           tooltiptext="&config.type.hint;" control="prefType"/>
  58.       <!-- Beware the hacks, number 264: add |value| attribute to make .value 
  59.            work when the dialog loads (|selected| selects an item, but doesn't
  60.            set .value). -->
  61.       <radiogroup orient="horizontal" id="prefType" value="chan" 
  62.           onselect="changeType();">
  63.         <radio value="net"  label="&network;"/>
  64.         <radio value="chan" label="&channel;" selected="true"/>
  65.         <radio value="user" label="&user;"/>
  66.       </radiogroup>
  67.     </hbox>
  68.     <separator class="groove"/>
  69.     <grid>
  70.       <columns><column/><column flex="1"/></columns>
  71.       <rows>
  72.         <row align="center">
  73.           <label value="&config.network.label;" control="prefName1" 
  74.             tooltiptext="&config.network.hint;" 
  75.             accesskey="&config.network.accesskey;"/>
  76.           <textbox id="prefName1"/>
  77.         </row>
  78.         <row align="center">
  79.           <label value="&config.target.label;" control="prefName2" 
  80.             tooltiptext="&config.target.hint;" 
  81.             accesskey="&config.target.accesskey;"/>
  82.           <textbox id="prefName2"/>
  83.         </row>
  84.       </rows>
  85.     </grid>
  86.   </vbox>
  87. </dialog>
  88.